body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
/*  margin: 10; */
    padding: 0;
    background-color: #ffffff;
    color: #000000;
}
header {
    background-color: #255,255,255;
    color: black;
    padding: 1rem 0;
    text-align: center;
}
header .logo-container {
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 1.5rem;
}
main {
    padding: 1rem;
}
section {
    margin-bottom: 2rem;
}
.contact-info address {
    font-style: normal;
    line-height: 1.5;
	text-align: center; /* Centers text inside the section */

}
nav ul {
    list-style: none;
    padding: 0;
}
nav ul li {
    margin: 0.5rem 0;
}
nav ul li a {
    color: black;
    text-decoration: none;
}
nav ul li a:hover {
    text-decoration: underline;
}
footer {
    background-color: #255,255,255;
    color: black;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}
 .title {
        color: red; /* Sets text color */
        font-size: 1.25rem; /* Equivalent to size="4" */
        font-weight: bold; /* Equivalent to <b> */
        text-align: center; /* Centers text */
    }
.title-red {
        color: red;
        font-size: 1.25rem; /* Equivalent to font size 4 */
        font-weight: bold;
        text-align: center;
    }

 .title-green {
        color: green;
        font-size: 1.25rem;
        font-weight: bold;
        text-align: center;
    }

    /* Apply red text to list items */
 .red-list li {
        color: black;
    }
.small-text {
        font-size: 0.9em;
    }